Add :group to faces
authorjustbur <justin@burkett.cc>
Wed, 8 Jul 2015 11:40:17 +0000 (07:40 -0400)
committerjustbur <justin@burkett.cc>
Wed, 8 Jul 2015 11:40:17 +0000 (07:40 -0400)
which-key.el

index e872f08a97840c7903edeac12f7aa19f364c5ef2..58a674f546fbc69041cc124b6003c100bd40720f 100644 (file)
@@ -76,19 +76,24 @@ location is top or bottom.")
 ;; Faces
 (defface which-key-key-face
   '((t . (:inherit font-lock-constant-face)))
-  "Face for which-key keys")
+  "Face for which-key keys"
+  :group 'which-key)
 (defface which-key-separator-face
   '((t . (:inherit font-lock-comment-face)))
-  "Face for the separator (default separator is an arrow)")
+  "Face for the separator (default separator is an arrow)"
+  :group 'which-key)
 (defface which-key-command-description-face
   '((t . (:inherit font-lock-function-name-face)))
-  "Face for the key description when it is a command")
+  "Face for the key description when it is a command"
+  :group 'which-key)
 (defface which-key-group-description-face
   '((t . (:inherit font-lock-keyword-face)))
-  "Face for the key description when it is a group or prefix")
+  "Face for the key description when it is a group or prefix"
+  :group 'which-key)
 (defface which-key-special-key-face
   '((t . (:inherit which-key-key-face :inverse-video t :weight bold)))
-  "Face for special keys (SPC, TAB, RET)")
+  "Face for special keys (SPC, TAB, RET)"
+  :group 'which-key)
 
 ;; Internal Vars
 ;; (defvar popwin:popup-buffer nil)